home *** CD-ROM | disk | FTP | other *** search
- /*//////////////////////////////////////////////////////////////////////
- Filename: arn-enroll.js
- Company Name: Computer Associates International, Inc.
- Legal Copyright: Copyright (c) Computer Associates International, Inc.
- Author: Ales Novak
- Product: Tiny Firewall
- Description: javascript code to get checksum & other info from exe or dll file
- ///////////////////////////////////////////////////////////////////////*/
-
- // requires sdb-consts.js + sdb-msgs.js
- // requires arn-sdbfncs.js + tools.js
-
- var CHKS_LABEL_DOES_NOT_EXIST = 0,
- CHKS_LABEL_EXISTS = 1,
- CHKS_CHECKSUM_ALREADY_PRESENT = 2,
- CHKS_DIFFERENT_LABEL_TYPE = 3;
-
- ///////////////////////////////////////////////////////////////////////////
- // ER_CalculateChecksum
- function ER_CalculateChecksum( strFilePath )
- {
- var strChecksum = "";
-
- try {
- // get the PathExpander ActiveX => CLSID:8F6B7CC8-4C0C-46B4-9C81-1C2DD7CFB6C6
- var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
-
- if (!oPathExp)
- return strChecksum;
-
- // let PathExpander calculate the checksum
- strChecksum = oPathExp.ComputeMD5String( strFilePath );
- }
- catch (e) {}
-
- return strChecksum;
- }
-
- ///////////////////////////////////////////////////////////////////////////
- // ER_GetExeOrDllDescription
- function ER_GetExeOrDllDescription( strFilePath )
- {
- var strDescription = "";
-
- try {
- // get the PathExpander ActiveX
- var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
-
- if (!oPathExp)
- return strDescription;
-
- // let PathExpander get the description
- strDescription = oPathExp.GetPEDescription( strFilePath );
- }
- catch (e) {}
-
- return strDescription;
- }
-
- ///////////////////////////////////////////////////////////////////////////
- // ER_GetLabelAndItsChecksumsStatus
- function ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser )
- {
- // first get the correct LabelList depending on Client x Server parser and Dll x Application
- var labelList;
- if (parseBoolean(bUseClientParser))
- labelList = parseBoolean(bIsDll) ? external.ClientParser(XM_APPREP).DllLabelList : external.ClientParser(XM_APPREP).LabelList;
- else
- labelList = parseBoolean(bIsDll) ? external.ServerParser(XM_APPREP).DllLabelList : external.ServerParser(XM_APPREP).LabelList;
-
- var label;
-
- /*
- // if the label already exists
- var labelEnum = new Enumerator(labelList);
- labelEnum.moveFirst();
- while (!labelEnum.atEnd())
- {
- var strStoredLabel = labelEnum.item().LabelID;
- if (strStoredLabel.toUpperCase() == strLabel.toUpperCase()) // the label already exists
- {
- label = labelEnum.item();
- break;
- }
- labelEnum.moveNext();
- }
-
- if (!label)
- return CHKS_LABEL_DOES_NOT_EXIST;
- */
- try {
- label = labelList.Get( strLabel );
- } catch(e){
- return CHKS_LABEL_DOES_NOT_EXIST;
- }
-
- if (eLabelType != label.Type)
- return CHKS_DIFFERENT_LABEL_TYPE;
-
- if (strChecksum && eLabelType != LT_NAME && eLabelType != LT_PATH)
- {
- var checksumEnum = new Enumerator(label.ChecksumList);
- checksumEnum.moveFirst();
- while (!checksumEnum.atEnd())
- {
- if (checksumEnum.item().Checksum.toUpperCase() == strChecksum.toUpperCase()) // the checksum already exists
- return CHKS_CHECKSUM_ALREADY_PRESENT;
- checksumEnum.moveNext();
- }
- }
-
- return CHKS_LABEL_EXISTS;
- }
-
- ///////////////////////////////////////////////////////////////////////////
- // ER_EnrollLabel
- function ER_EnrollLabel( strLabel, bIsDll, eLabelType, strDescription, strPathOrName, strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB )
- {
- //alert( strLabel + " " + bIsDll.toString() + " " + eLabelType.toString() + " " + strDescription + " " + strPathOrName + " " + strChecksum + " " + iAccessResult.toString() + " " + iAuditLevel.toString() + " " + bUseClientParser.toString() );
- var status = ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser );
- if (CHKS_LABEL_DOES_NOT_EXIST == status)
- {
- AR_AddLabel( strLabel, bIsDll, eLabelType, strDescription, strPathOrName, strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB );
- return;
- }
- alert("Label with the same name already exists");
- }
-
- function ER_EnrollAllExeOrDllsFromDir( strDirPath, bSubTree, bIsDll, eLabelType, strGroup, iAccessResult, iAuditLevel, lType, bUseClientParser )
- {
- try
- {
- var oList = getLabelList(bIsDll, bUseClientParser);
- var iPreCnt = oList.Count;
-
- var iCnt = oList.EnrollPath(strDirPath, bSubTree? 1 : 0, eLabelType, iAccessResult, iAuditLevel, strGroup, lType );
-
- AR_Save( bUseClientParser );
-
- alert( iCnt + ' files processed, ' + (oList.Count - iPreCnt) + ' labels successfully added.');
- }
- catch (e)
- {
- alert("Error during enrollment");
- }
- }
-
- ///////////////////////////////////////////////////////////////////////////
- // ER_EnrollAllExeOrDllsFromDir
- /*function ER_EnrollAllExeOrDllsFromDir2( strDirPath, bSubTree, bIsDll, eLabelType, strGroup, iAccessResult, iAuditLevel, bUseClientParser )
- {
- try
- {
- if ( strDirPath.substring(strDirPath.length-1) == '\\' )
- strDirPath = strDirPath.substring(0,strDirPath.length-1);
-
- // get the PathExpander ActiveX
- var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
-
- if (!oPathExp)
- {
- alert("Cannot load PathExpander ActiveX");
- return;
- }
-
- // prepare the wildcard string for PathExpander->ExpandFilePath2
- var strWildcard;
- if (parseBoolean(bIsDll))
- strWildcard = parseBoolean(bSubTree) ? "%AllDllsInSubTree%" : "%AllDllsInDir%";
- else
- strWildcard = parseBoolean(bSubTree) ? "%AllExecutablesInSubTree%" : "%AllExecutablesInDir%";
- var strFullSearchPath = strDirPath + "\\" + strWildcard;
-
- // get all file paths into SAFEARRAY
- var vbarrExpPath = oPathExp.ExpandFilePath2( strFullSearchPath );
-
- // convert SAFEARRAY into collection
- var arrExpPath = vbarrExpPath.toArray();
-
- var bAvoidSavingSDB = true;
-
- // now do for..each algorithm => Compute the checksum and enroll it
- var key;
- for (key in arrExpPath) {
- //alert( arrExpPath[key] );
- var strChecksum = (eLabelType != LT_PATH && eLabelType != LT_NAME) ? oPathExp.ComputeMD5String( arrExpPath[key] ) : "";
- var strDescription = oPathExp.GetPEDescription( arrExpPath[key] );
- //var strTimeStamp = oPathExp.GetPETimeStamp( arrExpPath[key] );
- //var strVersion = oPathExp.GetPEVersion( arrExpPath[key] );
- var strPath = arrExpPath[key];
- var i = strPath.lastIndexOf('\\');
- var strLabel = strPath.substring(i + 1);
-
- //var strLabel = arrExpPath[key].substr(strDirPath.length + 1);
- //alert( strLabel + " " + strDescription + " " + strTimeStamp + " " + strVersion + " " + strChecksum );
- //var iIconIdx = oPathExp.GetPEIconIndex( arrExpPath[key] );
- //alert( iIconIdx.toString() );
-
- var strOrigLabel = strLabel;
- var Idx = 2;
- while (true) // loop is necessary just for the case CHKS_DIFFERENT_LABEL_TYPE or CHKS_LABEL_EXISTS if !strChecksum
- {
- var status = ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser );
- //alert( status )
- if (CHKS_LABEL_DOES_NOT_EXIST == status) { // add it to repository
- AR_AddLabel( strLabel, bIsDll, eLabelType, strDescription, arrExpPath[key], strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB );
- break;
- } else if (CHKS_CHECKSUM_ALREADY_PRESENT == status) { // do nothing
- break;
- } else if (CHKS_LABEL_EXISTS == status && strChecksum) {// add the checksum to an existing label
- AR_AddChecksumToLabel( strLabel, bIsDll, strChecksum, arrExpPath[key], bUseClientParser, bAvoidSavingSDB );
- break;
- } else { // try to change the label name to a different one
- strLabel = strOrigLabel + "_" + Idx.toString();
- Idx++;
- if (Idx > 10) // do the max number of attempts here...
- break;
- }
- }
-
- if (strGroup && Idx < 10)
- {
- bShowErrorAlerts = false;
- AR_AddLabelToGroup( strLabel, strGroup, bIsDll, bUseClientParser, bAvoidSavingSDB);
- bShowErrorAlerts = true;
- }
- }
-
- AR_Save( bUseClientParser );
- //external.Save();
- }
- catch (e)
- {
- alert("Error during enrollment");
- }
- }*/
-